home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / gui / prcgntn1.lha / Precognition / source / minmax.h < prev    next >
C/C++ Source or Header  |  1992-12-23  |  151b  |  7 lines

  1. #ifndef MINMAX_H
  2. #define MINMAX_H
  3. /* yer basic min & max fuctions. */
  4. #define MIN(a,b) (((a)<(b))?(a):(b))
  5. #define MAX(a,b) (((a)>(b))?(a):(b))
  6.  
  7. #endif